Skip to content

build(deps): bump the per-dependency group in /bindings/ruby with 2 updates - #20

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bundler/bindings/ruby/per-dependency-b554073848
Closed

build(deps): bump the per-dependency group in /bindings/ruby with 2 updates#20
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bundler/bindings/ruby/per-dependency-b554073848

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 2, 2026

Copy link
Copy Markdown

Bumps the per-dependency group in /bindings/ruby with 2 updates: minitest and rb_sys.

Updates minitest from 6.0.2 to 6.0.3

Changelog

Sourced from minitest's changelog.

=== 6.0.3 / 2026-03-31

  • 1 bug fix:

    • assert_same(nil, value) no longer allowed. Use assert_nil to be explicit. (paddor)
Commits
  • 649b075 prepped for release
  • a2d0904 - assert_same(nil, value) no longer allowed. Use assert_nil to be explicit. (...
  • See full diff in compare view

Updates rb_sys from 0.9.124 to 0.9.125

Release notes

Sourced from rb_sys's releases.

v0.9.125

What's Changed

New Contributors

Full Changelog: oxidize-rb/rb-sys@v0.9.124...v0.9.125

Commits
  • e55987b Bump to v0.9.125
  • b42b5fb Merge pull request #713 from oxidize-rb/bump-bindgen
  • ed7b266 Bump bingen
  • 4c9848e Merge pull request #714 from rwstauner/cargo-metadata-json
  • cd3078a Use JSON.parse instead of Gem::SafeYAML for cargo metadata
  • 3978510 Merge pull request #710 from reid-rigo/reid-rigo-release-workflow-updates
  • fba02b4 Update checkout action from v4 to v6
  • fa2abf0 Updates to deployment.mdx
  • 5e29781 Merge pull request #709 from oxidize-rb/dependabot/bundler/standard-tw-1.54.0
  • 44e5140 chore(deps): update standard requirement from ~> 1.52.0 to ~> 1.54.0
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the per-dependency group in /bindings/ruby with 2 updates: [minitest](https://github.com/minitest/minitest) and [rb_sys](https://github.com/oxidize-rb/rb-sys).


Updates `minitest` from 6.0.2 to 6.0.3
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v6.0.2...v6.0.3)

Updates `rb_sys` from 0.9.124 to 0.9.125
- [Release notes](https://github.com/oxidize-rb/rb-sys/releases)
- [Commits](oxidize-rb/rb-sys@v0.9.124...v0.9.125)

---
updated-dependencies:
- dependency-name: minitest
  dependency-version: 6.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: per-dependency
- dependency-name: rb_sys
  dependency-version: 0.9.125
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: per-dependency
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code labels Apr 2, 2026
@dependabot @github

dependabot Bot commented on behalf of github Apr 3, 2026

Copy link
Copy Markdown
Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Apr 3, 2026
@dependabot
dependabot Bot deleted the dependabot/bundler/bindings/ruby/per-dependency-b554073848 branch April 3, 2026 14:52
anakrish pushed a commit that referenced this pull request Jun 19, 2026
Port comparisons on `input.dest_port` (`>=`, `>`, `<=`, `<`, and a closed
range `lo <= port <= hi`) now lower into a single inclusive port-range clause
row and are enforced soundly, instead of being dropped.

Core changes:
- abi/plan: add `ScalarMatch::Range { min, max }` (inclusive). A range requires
  the field to be present, mirroring a Rego comparison over a missing field
  (`missing_matches = false`, fail-closed).
- plan: `lower_clause` now gathers atoms per field; `dest_port` accepts multiple
  `Cmp` atoms which are intersected into one range. Ge/Gt/Le/Lt map to half-open
  bounds clamped to `[0, u16::MAX]`; an empty intersection drops the clause
  (sound). `Ne`, a `negation_complement` Cmp, or any Cmp/Eq/Membership mix on
  the port field rejects the whole clause (fail-closed). Eq/Membership behaviour
  is unchanged.
- enforcer: `scalar_matches` handles `Range` (None never matches).
- bpf/egress.bpf.c: extend `struct clause_entry` with `port_min`/`port_max` and a
  `MATCH_RANGE` port_kind; `port_matches` handles the inclusive range. Host byte
  order and the bounded loop are unchanged; still compiles against live BTF.

Tests:
- tests/portrange.rs: 19 tests — unit lowering (Ge/Le/closed/strict/empty-drop/
  Ne-reject/negation-complement-reject/range+proto+CIDR/range+Exact-conflict/
  single-point) plus triple-path conformance (full_eval vs sim vs enforce) over
  a fuzzed port sweep, asserting never-over-permit and exact agreement within
  the kernel-observable u16 window.
- tests/fail_closed_unsupported.rs: 6 tests + design notes locking down #18
  (IPv6/connect6), #19 (deny-lists), #20 (other hooks, note-only), and #21
  (per-uid/cgroup scoping) as sound/fail-closed.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants